1 : <?php
2 : /*--------------------------------------------------------------------------+
3 : This file is part of eStudy
4 : externaltools/classes/class.xpwebinfo.inc.php
5 : - Modulgruppe: ExternalTools
6 : - Beschreibung: In dieser Datei ist die Klasse XPWebInfo implementiert.
7 : - Version: 1.0 13/10/05
8 : - Autor(en): Christian Gerhardt <case42@gmx.net>
9 : +---------------------------------------------------------------------------+
10 : This program is free software; you can redistribute it and/or
11 : modify it under the terms of the GNU General Public License
12 : as published by the Free Software Foundation; either version 2
13 : of the License, or any later version.
14 : +---------------------------------------------------------------------------+
15 : This program is distributed in the hope that it will be useful,
16 : but WITHOUT ANY WARRANTY; without even the implied warranty of
17 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 : GNU General Public License for more details.
19 : You should have received a copy of the GNU General Public License
20 : along with this program; if not, write to the Free Software
21 : Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 : +--------------------------------------------------------------------------*/
23 : /**
24 : * In dieser Datei ist die Klasse XPWebInfo implementiert.
25 : * @package eStudy.ExternalTools
26 : * @version 1.0, 13/10/05
27 : * @author Christian Gerhardt <case42@gmx.net>
28 : */
29 :
30 : /**
31 : * Path to Root falls nicht gesetzt
32 : */
33 1 : if (!defined('PATH_TO_ROOT'))
34 1 : define("PATH_TO_ROOT", "../../");
35 :
36 : /**Die Basisklasse*/
37 1 : require_once ("class.toolinfo.inc.php");
38 : /**
39 : * ToolInfo Klasse für XPWeb 3.x .
40 : * @package eStudy.ExternalTools
41 : * @version 1.0, 13/10/05
42 : * @author Christian Gerhardt <case42@gmx.net>
43 : */
44 1 : class EstudyInfo extends ToolInfo {
45 : public function EstudyInfo($id, $image = "logo_estudy.gif") {
46 0 : parent::ToolInfo($image);
47 0 : $this->toolName = "eStudy";
48 0 : $this->toolID = $id;
49 0 : }
50 : }
51 : ?>
|